home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #11 / CD 11 (Black) - 2001.iso / FAVORG / FAVO_SRC.ZIP / MainFrm.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2000-12-19  |  5.8 KB  |  215 lines

  1. // FAVORG Version 1.1
  2. // Copyright (c) 2000 Ziff Davis Media, Inc.
  3. // All rights reserved.
  4. // First Published in PC Magazine, US Edition, November 7, 2000.
  5. // Programmer: Patrick Philippot
  6.  
  7. #include "stdafx.h"
  8.  
  9. #include "FavOrg.h"
  10. #include "MainFrm.h"
  11.  
  12. #ifdef _DEBUG
  13. #define new DEBUG_NEW
  14. #undef THIS_FILE
  15. static char THIS_FILE[] = __FILE__;
  16. #endif
  17.  
  18. char const g_szPosSection[] = "wndpos";
  19. char const g_szShowEntry[] = "show";
  20. char const g_szFlagsEntry[] = "flags";
  21. char const g_szLeftEntry[] = "left";
  22. char const g_szRightEntry[] = "right";
  23. char const g_szTopEntry[] = "top";
  24. char const g_szBottomEntry[] = "bottom";
  25. char const g_szIconLabel[] = "Picked icon:";
  26.  
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CMainFrame
  29.  
  30. IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
  31.  
  32. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  33.     //{{AFX_MSG_MAP(CMainFrame)
  34.     ON_WM_CREATE()
  35.     ON_WM_WINDOWPOSCHANGING()
  36.     ON_WM_CLOSE()
  37.     //}}AFX_MSG_MAP
  38.     // Global help commands
  39.     ON_COMMAND(ID_HELP_FINDER, CFrameWnd::OnHelpFinder)
  40.     ON_COMMAND(ID_HELP, CFrameWnd::OnHelp)
  41.     ON_COMMAND(ID_CONTEXT_HELP, CFrameWnd::OnContextHelp)
  42.     ON_COMMAND(ID_DEFAULT_HELP, CFrameWnd::OnHelpFinder)
  43. END_MESSAGE_MAP()
  44.  
  45. static UINT indicators[] =
  46. {
  47.     ID_SEPARATOR,
  48.     ID_SEPARATOR,
  49.     ID_SEPARATOR
  50. };
  51.  
  52. /////////////////////////////////////////////////////////////////////////////
  53. // CMainFrame construction/destruction
  54.  
  55. CMainFrame::CMainFrame()
  56. {
  57.     // TODO: add member initialization code here
  58.     
  59. }
  60.  
  61. CMainFrame::~CMainFrame()
  62. {
  63. }
  64.  
  65. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  66. {
  67.     if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  68.         return -1;
  69.  
  70.     if (!m_wndStatusBar.CreateEx(this, SBT_TOOLTIPS, WS_CHILD | WS_VISIBLE | CBRS_BOTTOM) ||
  71.         !m_wndStatusBar.SetIndicators(indicators,
  72.           sizeof(indicators)/sizeof(UINT)))
  73.     {
  74.         TRACE0("Failed to create status bar\n");
  75.         return -1;      // fail to create
  76.     }
  77.  
  78.     CDC*    pDC = m_wndStatusBar.GetDC();
  79.     CFont*    pFont = m_wndStatusBar.GetFont();
  80.     CFont*    pOldFont = pDC->SelectObject(pFont);
  81.     SIZE    sizeLabel;
  82.  
  83.     GetTextExtentPoint32(pDC->m_hDC, g_szIconLabel, strlen(g_szIconLabel), &sizeLabel);
  84.     pDC->SelectObject(pOldFont);
  85.     ReleaseDC(pDC);
  86.  
  87.     m_wndStatusBar.SetPaneInfo(0, 1, SBPS_NOBORDERS, __max(60, sizeLabel.cx + 5));
  88.     m_wndStatusBar.SetPaneText(0, g_szIconLabel);
  89.     m_wndStatusBar.SetPaneInfo(1, 2, SBPS_NOBORDERS, 17);
  90.     m_wndStatusBar.SetPaneInfo(2, 0, SBPS_STRETCH, 0);
  91.     m_wndStatusBar.GetStatusBarCtrl().SetMinHeight(22);
  92.  
  93.     return 0;
  94. }
  95.  
  96. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  97. {
  98.     if( !CFrameWnd::PreCreateWindow(cs) )
  99.         return FALSE;
  100.  
  101.     cs.style = cs.style & ~FWS_PREFIXTITLE & ~FWS_ADDTOTITLE;
  102.  
  103.     return TRUE;
  104. }
  105.  
  106. /////////////////////////////////////////////////////////////////////////////
  107. // CMainFrame diagnostics
  108.  
  109. #ifdef _DEBUG
  110. void CMainFrame::AssertValid() const
  111. {
  112.     CFrameWnd::AssertValid();
  113. }
  114.  
  115. void CMainFrame::Dump(CDumpContext& dc) const
  116. {
  117.     CFrameWnd::Dump(dc);
  118. }
  119.  
  120. #endif //_DEBUG
  121.  
  122. /////////////////////////////////////////////////////////////////////////////
  123. // CMainFrame message handlers
  124.  
  125.  
  126. BOOL CMainFrame::OnCommand(WPARAM wParam, LPARAM lParam) 
  127. {
  128.     if (wParam == CMD_LEGEND_CLOSING)
  129.     {
  130.         POSITION pos = GetActiveDocument()->GetFirstViewPosition();
  131.         if (pos)
  132.         {
  133.             CView* pView = GetActiveDocument()->GetNextView(pos);
  134.             if (pView)
  135.                 pView->SendMessage(WM_COMMAND, wParam, lParam);
  136.         }
  137.         
  138.         return TRUE;
  139.     }
  140.     else
  141.         return CFrameWnd::OnCommand(wParam, lParam);
  142. }
  143.  
  144. void CMainFrame::OnWindowPosChanging(WINDOWPOS FAR* lpwndpos) 
  145. {
  146.     CFrameWnd::OnWindowPosChanging(lpwndpos);
  147.  
  148.     if (lpwndpos->cx < MIN_FRAME_SIZEX)
  149.         lpwndpos->cx = MIN_FRAME_SIZEX;
  150.  
  151.     if (lpwndpos->cy < MIN_FRAME_SIZEY)
  152.         lpwndpos->cy = MIN_FRAME_SIZEY;
  153. }
  154.  
  155. void CMainFrame::OnClose() 
  156. {
  157.     WINDOWPLACEMENT WndStatus;
  158.     
  159.     WndStatus.length = sizeof(WINDOWPLACEMENT);
  160.     GetWindowPlacement(&WndStatus);
  161.  
  162.     CString sIniFile = ((CFavOrgApp*) AfxGetApp())->m_sIniFile;
  163.     CString sOut;
  164.     
  165.     sOut.Format("%d", WndStatus.flags);
  166.     WritePrivateProfileString(g_szPosSection, g_szFlagsEntry, sOut, sIniFile);
  167.     sOut.Format("%d", WndStatus.showCmd);
  168.     WritePrivateProfileString(g_szPosSection, g_szShowEntry, sOut, sIniFile);
  169.     sOut.Format("%d", WndStatus.rcNormalPosition.left);
  170.     WritePrivateProfileString(g_szPosSection, g_szLeftEntry, sOut, sIniFile);
  171.     sOut.Format("%d", WndStatus.rcNormalPosition.top);
  172.     WritePrivateProfileString(g_szPosSection, g_szTopEntry, sOut, sIniFile);
  173.     sOut.Format("%d", WndStatus.rcNormalPosition.right);
  174.     WritePrivateProfileString(g_szPosSection, g_szRightEntry, sOut, sIniFile);
  175.     sOut.Format("%d", WndStatus.rcNormalPosition.bottom);
  176.     WritePrivateProfileString(g_szPosSection, g_szBottomEntry, sOut, sIniFile);
  177.     
  178.     CFrameWnd::OnClose();
  179. }
  180.  
  181. void CMainFrame::ActivateFrame(int nCmdShow) 
  182. {
  183.     int nFlags;
  184.      int    nShow;
  185.      CRect rect;
  186.  
  187.      CString sIniFile = ((CFavOrgApp*) AfxGetApp())->m_sIniFile;
  188.      
  189.      if (((nShow = GetPrivateProfileInt(g_szPosSection, g_szShowEntry, -1, sIniFile)) != -1)
  190.          && 
  191.          ((rect.top = GetPrivateProfileInt(g_szPosSection, g_szTopEntry, -1, sIniFile)) != -1)
  192.          &&
  193.          ((rect.left = GetPrivateProfileInt(g_szPosSection, g_szLeftEntry, -1, sIniFile)) != -1)
  194.          &&
  195.          ((rect.bottom = GetPrivateProfileInt(g_szPosSection, g_szBottomEntry, -1, sIniFile)) != -1)
  196.          &&
  197.          ((rect.right = GetPrivateProfileInt(g_szPosSection, g_szRightEntry, -1, sIniFile)) != -1)) 
  198.      
  199.      {
  200.          WINDOWPLACEMENT WndStatus;
  201.  
  202.          nFlags = GetPrivateProfileInt(g_szPosSection, g_szFlagsEntry, 0, sIniFile);
  203.          WndStatus.flags = nFlags;
  204.          WndStatus.rcNormalPosition = rect;
  205.          WndStatus.showCmd = nShow;
  206.          WndStatus.ptMinPosition = CPoint(0,0);
  207.          WndStatus.ptMaxPosition = CPoint(-GetSystemMetrics(SM_CXBORDER), -GetSystemMetrics(SM_CYBORDER));
  208.  
  209.          SetWindowPlacement(&WndStatus);
  210.         CFrameWnd::ActivateFrame(nShow);
  211.       }
  212.     else
  213.         CFrameWnd::ActivateFrame(nCmdShow);
  214. }
  215.